home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2006 September / SAN CD 9-2006 CD-ROM 16.iso / pc / Software / Network Telescope Control / NTC-Setup.Exe / Source / ntc_server_config.dfm < prev    next >
Encoding:
Text File  |  2005-08-03  |  3.8 KB  |  169 lines

  1. object scope_config: Tscope_config
  2.   Left = 48
  3.   Top = 275
  4.   HelpType = htKeyword
  5.   HelpKeyword = 'Configuration'
  6.   BorderStyle = bsDialog
  7.   Caption = 'NTC Configuration'
  8.   ClientHeight = 243
  9.   ClientWidth = 260
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   HelpFile = 'ntc.hlp'
  17.   OldCreateOrder = False
  18.   OnCloseQuery = form_close_query
  19.   OnCreate = formcreate
  20.   OnPaint = check_activate
  21.   OnShow = FormShow
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object config_panel: TPanel
  25.     Left = 0
  26.     Top = 0
  27.     Width = 260
  28.     Height = 243
  29.     Align = alClient
  30.     TabOrder = 0
  31.     object model_group: TGroupBox
  32.       Left = 0
  33.       Top = 0
  34.       Width = 257
  35.       Height = 33
  36.       Caption = 'LX200'
  37.       TabOrder = 0
  38.       object model_label: TLabel
  39.         Left = 16
  40.         Top = 12
  41.         Width = 29
  42.         Height = 13
  43.         Caption = 'Model'
  44.       end
  45.       object model_list: TComboBox
  46.         Left = 88
  47.         Top = 8
  48.         Width = 145
  49.         Height = 21
  50.         ItemHeight = 13
  51.         TabOrder = 0
  52.         Text = 'AutoStar'
  53.         OnChange = model_listChange
  54.         OnSelect = model_listChange
  55.         Items.Strings = (
  56.           'LX200'
  57.           'AutoStar'
  58.           'Celestron')
  59.       end
  60.     end
  61.     object hp_group: TGroupBox
  62.       Left = 0
  63.       Top = 32
  64.       Width = 257
  65.       Height = 49
  66.       Caption = 'High Precision Pointing'
  67.       TabOrder = 1
  68.       object precision_label: TLabel
  69.         Left = 104
  70.         Top = 24
  71.         Width = 83
  72.         Height = 13
  73.         Caption = 'High Precision'
  74.         Font.Charset = DEFAULT_CHARSET
  75.         Font.Color = clWindowText
  76.         Font.Height = -11
  77.         Font.Name = 'MS Sans Serif'
  78.         Font.Style = [fsBold]
  79.         ParentFont = False
  80.       end
  81.       object switch_hpp_button: TButton
  82.         Left = 12
  83.         Top = 16
  84.         Width = 75
  85.         Height = 25
  86.         Caption = 'Switch HPP'
  87.         TabOrder = 0
  88.         OnClick = switch_hpp_buttonClick
  89.       end
  90.     end
  91.     object bug_group: TGroupBox
  92.       Left = 0
  93.       Top = 80
  94.       Width = 257
  95.       Height = 49
  96.       Caption = 'Bug Workarounds'
  97.       TabOrder = 2
  98.       object century_check: TCheckBox
  99.         Left = 8
  100.         Top = 16
  101.         Width = 97
  102.         Height = 17
  103.         HelpType = htKeyword
  104.         Caption = 'Century Bug'
  105.         TabOrder = 0
  106.         OnClick = century_checkClick
  107.       end
  108.       object seconds_check: TCheckBox
  109.         Left = 128
  110.         Top = 8
  111.         Width = 97
  112.         Height = 17
  113.         Caption = 'Ignore seconds'
  114.         TabOrder = 1
  115.         OnClick = seconds_checkClick
  116.       end
  117.       object binary_check: TCheckBox
  118.         Left = 128
  119.         Top = 24
  120.         Width = 97
  121.         Height = 17
  122.         Caption = 'Binary'
  123.         TabOrder = 2
  124.         OnClick = binary_checkClick
  125.       end
  126.     end
  127.     object misc_group: TGroupBox
  128.       Left = 0
  129.       Top = 128
  130.       Width = 257
  131.       Height = 57
  132.       Caption = 'Miscellaneous'
  133.       TabOrder = 3
  134.       object make_inis: TBitBtn
  135.         Left = 16
  136.         Top = 20
  137.         Width = 75
  138.         Height = 25
  139.         Caption = 'make ini files'
  140.         TabOrder = 0
  141.         OnClick = make_inisClick
  142.       end
  143.       object enable_scope_check: TCheckBox
  144.         Left = 136
  145.         Top = 24
  146.         Width = 97
  147.         Height = 17
  148.         Caption = 'Enable Scope'
  149.         Checked = True
  150.         State = cbChecked
  151.         TabOrder = 1
  152.         OnClick = enable_scope_checkClick
  153.       end
  154.     end
  155.     object mount_group: TRadioGroup
  156.       Left = 0
  157.       Top = 184
  158.       Width = 257
  159.       Height = 57
  160.       Caption = 'Mount'
  161.       ItemIndex = 1
  162.       Items.Strings = (
  163.         'Equatorial'
  164.         'Alt-Azimuth')
  165.       TabOrder = 4
  166.     end
  167.   end
  168. end
  169.